home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
prolog
/
brklyprl.lha
/
Emulator
/
Tests
/
Passed
/
test22.pl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-04-14
|
207 b
|
17 lines
/* Copyright (C) 1988, 1989 Herve' Touati, Aquarius Project, UC Berkeley */
main :-
write('ok?'),
nl,
a([a,b(c,d),[f,g|Z]]),
b([X],Z),
write(X),
nl.
a([a,b(c,d),[f,g,X]]) :- b(X).
b(ok).
b(X,X).